Tips
Working in the document window:
In the document window, you can navigate using the keyboard. Here is what the keys do:
- To edit the selected item, press Return.
- To do normal scrolling of the list, press Page Up, Page Down, Home and End.
- To change the selection to the next item, press the Up Arrow and Down Arrow.
- To expand or collapse the display of subordinate items, press the Right Arrow and Left Arrow.
- To fully expand or collapse the selection, press the Option key with the Right Arrow and Left Arrow.
- To expand or collapse the entire document's device list, press the Option and Shift keys with the Right Arrow and Left Arrow.
There are several uses for Drag & Drop:
Copy & Paste work for most items you see, including Devices, Events, Macros, Macro Commands, Announcements and AppleScripts.
Applescript Support
Thinking Home supports AppleScript with a complete dictionary for referring to all items in a document. You can view the dictionary from any script editor. What is not visible there is the support for referring to devices in alternative ways. Just about any way you attempt to refer to a device will work. For example, the same device might be referred to as device 1, device "Coffee Maker", first device, "C1" ,device "C1", device "Coffee Maker" of document "Home Sweet Home" of application "Thinking Home", and so on. In addition, Thinking Home supports multiple ways of phrasing operations. For example, these three scripts are all equivalent…
| tell application "Thinking Home" | ||
| turn on the "Coffee Maker" | ||
| end tell |
||
| tell the "Coffee Maker" of application Thinking Home" | ||
| turn on | ||
| end tell |
||
| tell application "Thinking Home" | ||
| tell "Coffee Maker" | ||
| turn on | ||
| end tell | ||
| end tell | ||